home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / access / heap / access.c next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  1.5 KB  |  55 lines

  1. /* ----------------------------------------------------------------
  2.  *   FILE
  3.  *    access.c
  4.  *    
  5.  *   DESCRIPTION
  6.  *    heap access method interface routines
  7.  *    NOTE: THIS FILE IS BEING OBSOLETED.  -cim 1/28/1991
  8.  *
  9.  *   INTERFACE ROUTINES
  10.  *
  11.  *   NOTES
  12.  *    If you are calling these routines, then you should change
  13.  *    to the heap_ functions instead.  I am systematically searching
  14.  *    out and removing all references to these old routines and
  15.  *    soon this file will go away -cim.
  16.  *    
  17.  *   IDENTIFICATION
  18.  *    $Header: /private/postgres/src/access/heap/RCS/access.c,v 1.31 1991/08/01 11:05:00 mer Exp $
  19.  * ----------------------------------------------------------------
  20.  */
  21.  
  22. #include <sys/file.h>
  23. #include <strings.h>
  24.  
  25. #include "tmp/postgres.h"
  26.  
  27. RcsId("$Header: /private/postgres/src/access/heap/RCS/access.c,v 1.31 1991/08/01 11:05:00 mer Exp $");
  28.  
  29. #include "access/heapam.h"
  30. #include "access/htup.h"
  31. #include "access/relscan.h"
  32. #include "access/skey.h"
  33. #include "access/tqual.h"
  34.  
  35. #include "storage/buf.h"
  36. #include "storage/bufmgr.h"
  37. #include "storage/bufpage.h"
  38. #include "storage/itemid.h"
  39. #include "storage/itemptr.h"
  40. #include "storage/page.h"
  41. #include "storage/lmgr.h"
  42.  
  43. #include "utils/memutils.h"
  44. #include "utils/fmgr.h"
  45. #include "utils/inval.h"
  46. #include "utils/log.h"
  47. #include "utils/mcxt.h"
  48. #include "utils/rel.h"
  49. #include "utils/relcache.h"
  50.  
  51. /* ----------------------------------------------------------------
  52.  *    access.c    - Interface to access method routines
  53.  * ----------------------------------------------------------------
  54.  */
  55.